home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9209.ARJ / 1009054B < prev    next >
Text File  |  1992-07-23  |  196b  |  14 lines

  1.  
  2. /*********** hello.c *****************/
  3.  
  4. #include <stdio.h>
  5.  
  6. main()
  7. {
  8.    char *ss = "this is a test";
  9.    printf("\nHello from power C");
  10.    again(ss);
  11. }
  12.  
  13. /*********** end of hello.c ***********/
  14.